/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0/topAir";
    object      wallHeatFlux;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [1 0 -3 0 0 0 0];

internalField   uniform 0;

boundaryField
{
    topAir_top
    {
        type            symmetryPlane;
    }
    leftLet
    {
        type            calculated;
        value           uniform 0;
    }
    rightLet
    {
        type            calculated;
        value           uniform 0;
    }
    frontAndBack
    {
        type            empty;
    }
    topAir_to_wallad1
    {
        type            calculated;
        value           uniform 0;
    }
    topAir_to_wallad2
    {
        type            calculated;
        value           uniform 0;
    }
    topAir_to_wall
    {
        type            calculated;
        value           uniform 0;
    }
}


// ************************************************************************* //
